25939970da39ca3f3f7e06affa7729ea0f50d606,platform/platform-api/src/com/intellij/ui/ScreenUtil.java,ScreenUtil,getAllScreenBounds,#,66

Before Change


  }

  private static Rectangle[] getAllScreenBounds() {
    final GraphicsEnvironment env = GraphicsEnvironment.getLocalGraphicsEnvironment();
    final GraphicsDevice[] devices = env.getScreenDevices();
    Rectangle[] result = new Rectangle[devices.length];
    for (int i = 0; i < devices.length; i++) {
      GraphicsDevice device = devices[i];

After Change


  }

  private static Rectangle[] getAllScreenBounds() {
    GraphicsDevice[] devices = GraphicsEnvironment.getLocalGraphicsEnvironment().getScreenDevices();
    Rectangle[] result = new Rectangle[devices.length];
    for (int i = 0; i < devices.length; i++) {
      result[i] = getScreenRectangle(devices[i]);